52c42c293263e2a3cf32b6d05882b2f967644327,src/com/mathgame/panels/SidePanel.java,SidePanel,undoFunction,#,441
Before Change
undo.completeUndo();
mathGame.workPanel.revalidate();
mathGame.workPanel.repaint();
mathGame.holdPanel.revalidate();
mathGame.holdPanel.repaint();
mathGame.cardPanel.revalidate();
}
After Change
undo.completeUndo();
mathGame.getWorkspacePanel().revalidate();
mathGame.getWorkspacePanel().repaint();
mathGame.getHoldPanel().revalidate();
mathGame.getHoldPanel().repaint();
mathGame.getCardPanel().revalidate();
}